Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assertion error Fix - Fixed Assertion true === false error #57

Merged
merged 3 commits into from
Nov 2, 2018

Conversation

deveshmehta7
Copy link
Contributor

No description provided.

@JamesIves
Copy link

This bug has been causing some problems for our team. I went ahead and tested the changes in this PR locally and they seem to be resolved. Would love to see this get properly reviewed/merged by the maintainers.

@Ailuue
Copy link

Ailuue commented Oct 16, 2018

Our team also uses an HTTPS app locally, and constantly crashes due to the error this fixes. Please review/merge ASAP!

@Miz85
Copy link

Miz85 commented Oct 19, 2018

+1 It'd be really great to get this fix merged. Many thanks to all people who are involved in this btw!

@damencho
Copy link

+1


// Remove the child
this.children.list.splice(index, 1)
try {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not an author or reviewer but I'm stuck with this issue as well. I just noticed this logic could be done a bit easier and without the try catch:

if (index !== -1 && this.children.list.length >= index) {
  this.children.list.splice(index, 1);
}

@d-mg
Copy link

d-mg commented Oct 26, 2018

Would be nice if someone could merge this in.

@nikvaessen
Copy link

+1

@YoniH
Copy link

YoniH commented Nov 1, 2018

Anyone merging this soon?
I get this error from Create React App and I don't want to eject my project just to fiddle with webpack and work around this

@Grantlyk
Copy link

Grantlyk commented Nov 2, 2018

This needs to be merged -- is anyone maintaining this repo?

@daviddias
Copy link
Member

Thank you @deveshmehta7 for the PR. Handling the review, merge and release now

@daviddias daviddias merged commit ae5e558 into spdy-http2:master Nov 2, 2018
@daviddias
Copy link
Member

Published in spdy-transport in 2.1.1. Apologies to everyone on the delay on getting to this one, as described on spdy-http2/node-spdy#339, I'm beyond capacity to be capable to maintain this module, I hope you understand.

@niftylettuce
Copy link

thank you @diasdavid

@niftylettuce
Copy link

jacobheun added a commit to jacobheun/spdy-transport that referenced this pull request Nov 2, 2018
@daviddias
Copy link
Member

@niftylettuce semver should pick on it, right?

@mgol
Copy link

mgol commented Nov 3, 2018

@niftylettuce Remove node_modules and package-lock.json and run npm install again and you should get it.

@niftylettuce
Copy link

niftylettuce commented Nov 3, 2018 via email

@raRaRa
Copy link

raRaRa commented Nov 7, 2018

Thank you so much for the fix. This has been annoying me for the past weeks.

A small addition to @mgol answer: For people using yarn, you need to delete yarn.lock instead of package-lock.json.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.